home *** CD-ROM | disk | FTP | other *** search
- echo off
- REM
- REM Does this computer have 50 or more files handles?
- REM
- nw_fhcnt /NOLOGO /NOINFO /NOERRLVL
- if errorlevel 50 goto YES
- echo Error: You do not have enough filehandles!
- echo Please change the CONFIG.SYS line to FILES=50!
- goto BR1
- :YES
- echo You have 50 or more file handles. Great!
- :BR1
-